home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
printfax.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
698b
|
39 lines
/*
* $VER: Create 1.04.00 (8.6.93)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* Print out a PhonePak FAXX file using the Prefs2 printer module.
* Prints all pages of the fax file.
*
* Actually this will work with any file format.
*
*/
OPTIONS RESULTS
RequestFile '"Select Fax File:"' '"PPak:(Master)"'
IF rc ~= 0 THEN EXIT
file = result
SetPrinter 'Prefs2'
Menu Printer
page = 1
DO FOREVER
LoadBuffer '"'file'"' Force page
IF rc ~= 0 THEN LEAVE
Printer Density 3
Printer Aspect Keep
Printer Size HEIGHT "10.5"
Printer Shade BW
Printer Print
IF rc ~= 0 THEN LEAVE
Printer FormFeed
page = page + 1
END